-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
definitions.json
412 lines (412 loc) · 11.3 KB
/
definitions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
{
"swagger": "2.0",
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"info": {
"version": "1.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"TrackedResource": {
"properties": {
"location": {
"type": "string",
"x-ms-mutability": [
"read",
"create"
],
"description": "The Geo-location where the resource lives"
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"x-ms-mutability": [
"read",
"create",
"update"
],
"description": "Resource tags"
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
],
"required": [
"location"
],
"description": "The Resource definition."
},
"Resource": {
"properties": {
"id": {
"type": "string",
"readOnly": true,
"description": "Resource Id"
},
"name": {
"type": "string",
"readOnly": true,
"description": "Resource name"
},
"type": {
"type": "string",
"readOnly": true,
"description": "Resource type"
}
},
"x-ms-azure-resource": true,
"description": "The Resource definition for other than namespace."
},
"EntityStatus": {
"type": "string",
"enum": [
"Active",
"Disabled",
"Restoring",
"SendDisabled",
"ReceiveDisabled",
"Creating",
"Deleting",
"Renaming",
"Unknown"
],
"x-ms-enum": {
"name": "EntityStatus",
"modelAsString": false
},
"description": "Entity status."
},
"MessageCountDetails": {
"type": "object",
"properties": {
"activeMessageCount": {
"readOnly": true,
"format": "int64",
"type": "integer",
"description": "Number of active messages in the queue, topic, or subscription."
},
"deadLetterMessageCount": {
"readOnly": true,
"format": "int64",
"type": "integer",
"description": "Number of messages that are dead lettered."
},
"scheduledMessageCount": {
"readOnly": true,
"format": "int64",
"type": "integer",
"description": "Number of scheduled messages."
},
"transferMessageCount": {
"readOnly": true,
"format": "int64",
"type": "integer",
"description": "Number of messages transferred to another queue, topic, or subscription."
},
"transferDeadLetterMessageCount": {
"readOnly": true,
"format": "int64",
"type": "integer",
"description": "Number of messages transferred into dead letters."
}
},
"description": "Message Count Details."
},
"ErrorResponse": {
"properties": {
"error": {
"type": "object",
"description": "The error object.",
"properties": {
"code": {
"readOnly": true,
"type": "string",
"description": "The error code."
},
"message": {
"readOnly": true,
"type": "string",
"description": "The error message."
},
"target": {
"readOnly": true,
"type": "string",
"description": "The error target."
},
"details": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorResponse"
},
"description": "The error details."
},
"additionalInfo": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorAdditionalInfo"
},
"description": "The error additional info."
}
}
}
},
"description": "The resource management error response."
},
"ErrorAdditionalInfo": {
"properties": {
"type": {
"readOnly": true,
"type": "string",
"description": "The additional info type."
},
"info": {
"readOnly": true,
"type": "object",
"description": "The additional info."
}
},
"description": "The resource management error additional info."
},
"systemData": {
"description": "Metadata pertaining to creation and last modification of the resource.",
"type": "object",
"readOnly": true,
"properties": {
"createdBy": {
"type": "string",
"description": "The identity that created the resource."
},
"createdByType": {
"type": "string",
"description": "The type of identity that created the resource.",
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"x-ms-enum": {
"name": "createdByType",
"modelAsString": true
}
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp of resource creation (UTC)."
},
"lastModifiedBy": {
"type": "string",
"description": "The identity that last modified the resource."
},
"lastModifiedByType": {
"type": "string",
"description": "The type of identity that last modified the resource.",
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"x-ms-enum": {
"name": "createdByType",
"modelAsString": true
}
},
"lastModifiedAt": {
"type": "string",
"format": "date-time",
"description": "The type of identity that last modified the resource."
}
}
}
},
"parameters": {
"SubscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"required": true,
"type": "string",
"description": "Subscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client API version."
},
"ResourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"maxLength": 90,
"x-ms-parameter-location": "method",
"description": "Name of the Resource group within the Azure subscription."
},
"NamespaceNameParameter": {
"name": "namespaceName",
"in": "path",
"required": true,
"type": "string",
"minLength": 6,
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The namespace name"
},
"PrivateEndpointConnectionNameParameter": {
"name": "privateEndpointConnectionName",
"in": "path",
"required": true,
"type": "string",
"x-ms-parameter-location": "method",
"description": "The PrivateEndpointConnection name"
},
"AuthorizationRuleNameParameter": {
"name": "authorizationRuleName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The authorization rule name."
},
"QueueNameParameter": {
"name": "queueName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"x-ms-parameter-location": "method",
"description": "The queue name."
},
"TopicNameParameter": {
"name": "topicName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"x-ms-parameter-location": "method",
"description": "The topic name."
},
"AliasNameParameter": {
"name": "alias",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The Disaster Recovery configuration name"
},
"SubscriptionNameParameter": {
"name": "subscriptionName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The subscription name."
},
"ConfigNameParameter": {
"name": "configName",
"in": "path",
"description": "The configuration name. Should always be \"$default\".",
"required": true,
"type": "string",
"enum": [
"$default"
],
"x-ms-enum": {
"name": "MigrationConfigurationName",
"modelAsString": true
},
"x-ms-parameter-location": "method"
},
"SkipParameter": {
"name": "$skip",
"description": "Skip is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skip parameter that specifies a starting point to use for subsequent calls.",
"in": "query",
"required": false,
"type": "integer",
"minimum": 0,
"maximum": 1000,
"x-ms-parameter-location": "method"
},
"TopParameter": {
"name": "$top",
"description": "May be used to limit the number of results to the most recent N usageDetails.",
"in": "query",
"required": false,
"type": "integer",
"minimum": 1,
"maximum": 1000,
"x-ms-parameter-location": "method"
},
"RuleNameParameter": {
"name": "ruleName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The rule name."
},
"SkuNameParameter": {
"name": "sku",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"maxLength": 50,
"x-ms-parameter-location": "method",
"description": "The sku type."
},
"IpFilterRuleNameParameter": {
"name": "ipFilterRuleName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"x-ms-parameter-location": "method",
"description": "The IP Filter Rule name."
},
"VirtualNetworkRuleNameParameter": {
"name": "virtualNetworkRuleName",
"in": "path",
"required": true,
"type": "string",
"minLength": 1,
"x-ms-parameter-location": "method",
"description": "The Virtual Network Rule name."
}
}
}